home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / SOUND / MP3CONV.ZIP / !MP3Conv / c / sound-amig < prev    next >
Text File  |  1997-02-14  |  323b  |  21 lines

  1. #include "common.h"
  2.  
  3. int sound_init(int audiofd, layer *info, int stereo) {
  4.     /* Initialize audio device */
  5.  
  6.     return 0;
  7. }
  8.  
  9. int sound_open() {
  10.     return 0;
  11. }
  12.  
  13. int sound_close(int audiofd) {
  14.     return 0;
  15. }
  16.  
  17. int sound_write(int audiofd, const void *buffer, size_t count) {
  18.     return(write(audiofd, buffer, count));
  19. }
  20.  
  21.